home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC Users 1999 May
/
Cd Pc Users extra 20 mayo 1999.iso
/
Prog
/
Inst
/
DevCpp20
/
_SETUP.1
/
glob.c
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
1999-02-01
|
296 b
|
21 lines
#include <stdlib.h>
#include <stdio.h>
#include <windows.h>
int
main (int argc, char* argv[])
{
int i;
printf ("Command line (via GetCommandLine) \"%s\"\n",
GetCommandLine());
for (i = 0; i < argc; i++)
{
printf ("Argv[%d] \"%s\"\n", i, argv[i]);
}
return 0;
}